OPC Studio User's Guide and Reference
Generic .NET Types for OPC-DA
Concepts > OPC Data Client Concepts > OPC Data Client Extensions > OPC Data Client Layered Extensions for .NET and Python > OPC Data Access Extensions > Generic .NET Types for OPC-DA

Following generic types are available for use with OPC Data Access and OPC XML-DA:

These types are used with generic access extensions for OPC items (see Generic Access) and with generic access extensions for OPC properties (see Generic Access). They are also use with the Live Mapping Model.

For example, you can call the EasyDAClient.ReadItem<T> extension method with a given type T, and receive back a DAVtq<T> object with a TypedValue already properly typed as T.

Noted that if the untyped property on the base (non-generic) type has a name like XXXX, the corresponding typed property on the generic type has a name like TypedXXXX. For example, for an untyped property DAVtqResult.Vtq, there is a corresponding typed property DAVtqResult<T>.TypedVtq.

See Also